home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / c-tools / vbcc / machines / amiga68k / libsrc / stdio / setbuf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-17  |  111 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. void setbuf(FILE *stream,char *buf)
  4. {
  5.     setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ);
  6. }
  7.  
  8.